Click here to Skip to main content
15,887,596 members
Articles / Web Development / ASP.NET
Article

One-Level ASP.NET Menu – FlatMenu

Rate me:
Please Sign up or sign in to vote.
3.09/5 (19 votes)
16 Jun 2004CPOL1 min read 146.5K   5K   65   7
Simple navigation menu bar with CSS, PostBack and other features

Introduction

The simple menu can be applied foremost to navigate among several web forms. Features of the FlatMenu:

  1. One-Level menu only (no popup submenus).
  2. Rendering brief HTML code into div and span (no table tr td).
  3. Possibility to invocate of PostBack for each single menu item.
  4. No extra worthless JavaScript (except of PostBack sure).
  5. Distinguished menu item of the just loaded web form.
  6. Simple, well-arranged XML file data source in one place.
  7. Horizontal and vertical layout option.
On-line presentation is available at http://flatmenu.aspweb.cz/ [^]

Background

The control is based on the Scott Mitchell's excellent piece of software skmMenu.

Using the code

Data binding

In the Page_Load method of the Web Form

C#
flatMenu.DataSource = Server.MapPath("FlatMenu.xml");
flatMenu.DataBind();

or caching menu to avoid access to file system by every request: in Application_Start (Global.asax.cs)

C#
XmlDocument xmlMenu = new XmlDocument();
xmlMenu.Load(Server.MapPath("FlatMenu.xml"));
Application["flatMenu"] = xmlMenu;

and again the method Page_Load

C#
flatMenu.DataSource = Application["flatMenu"];
flatMenu.DataBind();

XML data source

Example of the structure of the XML file:

XML
<menu>
    <item postback="true">
        <text>
            web form
        </text>
        <url>
            WebForm.aspx
        </url>
    </item>
    <item suppresspostback="true">
        <text>
            other web form
        </text>
        <url>
            OtherWebForm.aspx
        </url>
    </item>
    <item>
        <text>
            CodeProject site
        </text>
        <url>
            http://www.codeproject.com
        </url>
    </item>
</menu>

Attribute postback means click on this menu item raises the postback. When active (current loaded) menu item has attribute supresspostback="true" then every other menu items behave as common a tag, so no postback raises.

Active menu item

The HTML tag belong to menu item of just loaded web form has this class attribute:

span class="activeHoriz", for horizontal menu layout
div class="activeVert", for vertical menu layout

CSS design

For customize design by CSS is important how the menu is rendered into the HTML code.

Horizontal rendering:

HTML
<div id="idFlatMenu">
    <span><a></a></span>
    <span class="activeHoriz"></span>
    <span><a></a></span>
</div>

Vertical rendering:

HTML
<div id="idFlatMenu">
    <div><a></a></span>
    <div class="activeVert"></span>
    <div><a></a></span>
</div>

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Czech Republic Czech Republic
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Generalgood ! Pin
1hello227-Aug-08 20:51
1hello227-Aug-08 20:51 
Questionhow the control will rendered Pin
mbbisht24-Aug-07 0:26
mbbisht24-Aug-07 0:26 
GeneralPassing aguments to the hyperlinks Pin
Miszou7-Dec-04 11:25
Miszou7-Dec-04 11:25 
GeneralWould be good if it worked in ... Pin
Anonymous16-Jun-04 2:59
Anonymous16-Jun-04 2:59 
GeneralRe: Would be good if it worked in ... Pin
Petr Felzmann16-Jun-04 18:48
Petr Felzmann16-Jun-04 18:48 
GeneralCould be really good... Pin
Joel Holdsworth14-Jun-04 1:39
Joel Holdsworth14-Jun-04 1:39 
GeneralRe: Could be really good... Pin
Petr Felzmann14-Jun-04 1:54
Petr Felzmann14-Jun-04 1:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.